1142d3d4c12a540eaa6bed9156e89767dd95061a,src/test/java/it/celi/test/httpMock/ProgrammableHandlerTest.java,ProgrammableHandlerTest,souldGet404From404MapperUrl,#,72

Before Change


	@Test
	public void souldGet404From404MapperUrl() throws Exception {

		ContentResponse response = httpClient.GET("http://localhost:8888/index.php").get();

		assertThat(response.getStatus(), equalTo(HttpStatus.NOT_FOUND_404));

After Change


	@Test
	public void souldGet404From404MapperUrl() throws Exception {

		ContentResponse response = httpClient.GET("http://localhost:8888/index.php");

		assertThat(response.getStatus(), equalTo(HttpStatus.NOT_FOUND_404));